home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-05-03 | 904 b | 40 lines |
- ################################################################################
- # Makefile for Ishido
- #
- ################################################################################
-
- HIGH_SCORE_FILE=/home/cd1/evu2/jjs40/tmp/ishido_scores
- GAME_DIR=/home/cd1/evu2/jjs40/bin
-
- ################################################################################
-
- # Libs for SunOS 4.1
- LIBS= -lX11
-
- # Libs for ISC Unix Sys V
- # LIBS= -lX11 -linet -lpt
-
- CFLAGS=-DHIGH_SCORE_FILE='"$(HIGH_SCORE_FILE)"'
-
- ################################################################################
-
- OBJS= gl.o ishido.o
-
- ################################################################################
-
- all: ishido
-
- ishido: $(OBJS)
- cc -o ishido $(OBJS) $(LIBS)
-
- install: all
- cp ishido $(GAME_DIR)
-
- clean:
- -rm *.o
- -rm Part*
- -rm ishido
-
- shar: clean
- find . -print | makekit
-